home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / powerb5.zip / DATEDIR.BAS < prev    next >
BASIC Source File  |  1993-06-01  |  179b  |  5 lines

  1. REM DATEDIR.BAS creates a batch file to add the date to
  2. REM the environment.
  3. today$ = RIGHT$(DATE$, 2) + LEFT$(DATE$, 2) + MID$(DATE$, 4, 2)
  4. PRINT "SET TODAY=" + today$
  5. SYSTEM